Bug 556835 – gtkentry.c: variable is declared at middle of block
authorMatthias Clasen <mclasen@redhat.com>
Fri, 24 Oct 2008 04:18:48 +0000 (04:18 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Fri, 24 Oct 2008 04:18:48 +0000 (04:18 +0000)
2008-10-24  Matthias Clasen  <mclasen@redhat.com>

        Bug 556835 – gtkentry.c: variable is declared at middle of block

        * gtk/gtkentry.c (gtk_entry_copy_clipboard): Fix a C99ism pointed
        out by Kazuki Iwamoto

svn path=/trunk/; revision=21707

ChangeLog
gtk/gtkentry.c

index 739b637e0fc91bc8b03c2701abca4746d01501ef..ae23acdeab35926ef032d7d9004cf22e85af28ef 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-10-24  Matthias Clasen  <mclasen@redhat.com>
+
+       Bug 556835 – gtkentry.c: variable is declared at middle of block
+
+       * gtk/gtkentry.c (gtk_entry_copy_clipboard): Fix a C99ism pointed
+       out by Kazuki Iwamoto
+
 2008-10-24  Matthias Clasen  <mclasen@redhat.com>
 
        Bug 557524 – "va_end(args);" should be added into
index 42376a26e538a485841b22a8d43546399c918418..24d107a6ddb7d704b2fc7ca3cd9f378da41cb26d 100644 (file)
@@ -3122,6 +3122,7 @@ gtk_entry_copy_clipboard (GtkEntry *entry)
 {
   GtkEditable *editable = GTK_EDITABLE (entry);
   gint start, end;
+  gchar *str;
 
   if (gtk_editable_get_selection_bounds (editable, &start, &end))
     {
@@ -3131,7 +3132,7 @@ gtk_entry_copy_clipboard (GtkEntry *entry)
           return;
         }
 
-      gchar *str = gtk_entry_get_public_chars (entry, start, end);
+      str = gtk_entry_get_public_chars (entry, start, end);
       gtk_clipboard_set_text (gtk_widget_get_clipboard (GTK_WIDGET (entry),
                                                        GDK_SELECTION_CLIPBOARD),
                              str, -1);